home *** CD-ROM | disk | FTP | other *** search
-
- // gfxadst.h
- //
- // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
-
- #ifndef __GFXADST_H__
- #define __GFXADST_H__
-
- #include "stdgfx.h"
- #include "gfxobj.h"
-
- class DATAOBJECT : public MYOBJECT
- {
- public :
- DATAOBJECT ();
- virtual ~DATAOBJECT ();
- }; // End of DATAOBJECT
-
- class ADST : public MYOBJECT
- {
- protected :
- LONG NumObjects;
-
- public :
- ADST () : MYOBJECT () { NumObjects = 0; };
- virtual ~ADST () {};
-
- LONG GetNumObjects () { return NumObjects; };
- }; // End of ADST
-
- #endif
-